home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 057a / dvrun11.zip / TNT.DOC < prev   
Text File  |  1993-01-17  |  12KB  |  283 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.          ///////////////////    ///           //   //////////////////
  25.                 //             // //         //           //
  26.                //             //   //       //           //
  27.               //             //     //     //           //
  28.              //             //       //   //           //
  29.             //             //         // //           //
  30.            //             //           ///           //
  31.           //             //            //           //
  32.  
  33.  
  34.  
  35.  
  36.  
  37.                    Tessler's Nifty Tools (TNT) Release 3.1
  38.  
  39.                               <<< SHAREWARE >>>
  40.  
  41.             Copyright (c) 1987, 1988, 1989, 1990, 1991, 1992, 1993
  42.  
  43.                              All Rights Reserved.
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65. TNT   is   a  collection  of  useful  SHAREWARE  MS-DOS   programs.   Monetary 
  66. contributions and any  ideas   for enhancements may be sent to:
  67.  
  68.                    Tessler's Nifty Tools (TNT)  Release 3.0
  69.                    430 Canyon Woods Place Suite A
  70.                    San Ramon, Ca. 94583
  71.  
  72.                    CompuServ: 71044,542
  73.  
  74.                    **************************************
  75.                    **        Summary of programs:      **
  76.                    **************************************
  77.  
  78. CHEK4DUP.EXE   Generates  a list of files  that exist in both .EXE  and   .COM 
  79.                form.  This  usually occurs when  software is  upgraded from  a 
  80.                COM  format  to  an  EXE format and the old  COM   version   is 
  81.                accidentally  left on  the system  when the new  EXE   form  is 
  82.                put  onto   the  system.  DOS  will always  invoke    the   COM 
  83.                form   before   the  EXE  form  program  so  you should  delete 
  84.                the  older  COM program if required.
  85.  
  86. COPYWA.EXE     Copies   files   matching  the   source   filespec    to    the 
  87.                destination  filespec  with the source file's attribute  copied 
  88.                into the  destination  file too.
  89.  
  90. CRTDUMP.EXE    This program dumps the contents of either a color or monochrome 
  91.                card/monitor in alphanumeric mode to the specified file.
  92.  
  93. DIR2BAT.EXE    Will  write  a listing of drive_path_file  specs  matching  the 
  94.                user's entered file  specification to  the  file DIR2.BAT. Each 
  95.                file  specification  found  may  be   prefixed and suffixed  by 
  96.                user provided strings. This batch file will then  be   able  to 
  97.                perform actions to the files.....
  98.  
  99.                For example, if your C: disk contains the following files:
  100.                        README.DOC TESTME.DOC LIST.DOC PRINTER.DOC
  101.  
  102.                Then the command:
  103.                        DIR2BAT C:*.DOC /S /A "ATTRIB -R ! /S" "DEL !" 
  104.  
  105.                will append the following lines to an existing DIR2.BAT file:
  106.  
  107.                     ATTRIB -R C:\README.DOC /S
  108.                     DEL C:\README.DOC
  109.                     ATTRIB -R C:\TESTME.DOC /S
  110.                     DEL C:\TESTME.DOC
  111.                     ATTRIB -R C:\LIST.DOC /S
  112.                     DEL C:\LIST.DOC
  113.                     ATTRIB -R C:\PRINTER.DOC /S
  114.                     DEL C:\PRINTER.DOC
  115.                     <eof>
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123. DVCPU.EXE      is  a  DesqView utility program that is meant to be  run  right  
  124.                before running  a program that requires full usage of the CPU's 
  125.                computing   power.   It pops up the DesqView  window  and  sets 
  126.                'Share CPU when in Foreground' to 'Y'  or 'N' depending on  the 
  127.                parameter  entered.  It  useful for programs  that  insist   on 
  128.                running  in  a  non-multitasking  environment  such  as   voice  
  129.                sampling and digitization programs.
  130.  
  131. DVPROMPT.EXE   Facilitates naming of DOS windows under DesqView. For  example, 
  132.                upon  opening and  using  several DOS windows with command line 
  133.                programs,  the   user  often finds  it  difficult  to  remember 
  134.                which window he/she was doing what task  in. Since each  window 
  135.                has  the same DOS prompt, DOS gives him/her no visual  clue  to 
  136.                the identification of the current window. 
  137.  
  138.                This program will change each DOS window's DOS prompt into  the 
  139.                typical  form of:
  140.                
  141.                     1 C:\>
  142.                     2 C:\>
  143.                     3 C:\>     etc.
  144.  
  145.                It  will  maintain  a  counter in  the  file  DVPROMPT.DAT.  If 
  146.                DVPROMPT  is   invoked and  it  cannot  find  DVPROMPT.DAT,  it 
  147.                resets  the counter to 1 (one).  If  it finds DVPROMPT.DAT,  it 
  148.                creates a file called TEMP.BAT that contains the sole line:
  149.  
  150.                     PROMPT n <user_string>
  151.  
  152.                where  n  is the counter value found in  DVPROMPT.DAT  and  the 
  153.                user_string  is   a  PROMPT string  (typically  $P$G).  If  the 
  154.                user_string contains spaces,  enclose it with double quotes.
  155.  
  156.                A  useful example is as follows: Assume that  DesqView  invokes 
  157.                AUTOEXEC.BAT  as  "AUTOEXEC   X"  whenever   it   opens  a  DOS  
  158.                command  shell.  Let  AUTOEXEC.BAT contain:
  159.  
  160.                     VERIFY OFF
  161.                     PATH = C:\;C:\DOS;C:\WPROC
  162.                     IF %1Y==Y GOTO NOT_UNDER_DV
  163.                     REM INVOKED BY DESQVIEW
  164.                     DVPROMPT $P$G
  165.                     TEMP      <- DOS jumps to this batch file to set the      prompt
  166.                     :NOT_UNDER_DV
  167.                     REM ENVOKED BY PC UPON POWER-UP
  168.                     DEL DVPROMPT.DAT         <- reset the counter to 1.
  169.                     PROMPT $P$G
  170.  
  171.  
  172. DVRUN.EXE      A  DesqView  utility  program that returns ERRORLEVEL  =  0  if 
  173.                DesqView is running or 1 if it is not.
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181. EXPNDTAB.EXE   Copies  the  file matching the  source    filespec    to    the 
  182.                destination   filespec  with any source file  <tab>  characters 
  183.                expanded  into space characters into the destination file.
  184.  
  185. FEEFIFO.EXE    Enables  the  FIFO  of a 16550A UART chip  at  the   COM   port 
  186.                specified  by  the  user. If the port  is  not  FIFO  equipped,  
  187.                nothing is done.
  188.  
  189. GROWP.COM      This   resident program requires about 1400 bytes  of  resident 
  190.                RAM   to  add    a  default  '>'   or   user   entered   growth  
  191.                character   to   the environment's  'PROMPT' string  each  time  
  192.                another  copy of  COMMAND.COM is  shelled  and  to  remove  the  
  193.                growth   character    when   the   copy   of   COMMAND.COM   is  
  194.                terminated.  GROWP  requires DOS version 3.0  or  higher.  Each  
  195.                growth  character  represents a suspended program  in  RAM  and  
  196.                gives you  a  visual warning that you should not turn-off  your  
  197.                PC   before returning  to the suspended program and  gracefully  
  198.                exiting  it.
  199.  
  200. IFONSCRN.EXE   IFONSCRN will examine the video screen for the appearance of up 
  201.                to  three case-sensitive   trigger (search) character  strings. 
  202.                IFONSCRN may be run as  a  TSR (RAM-resident)  or as a  non-TSR 
  203.                program  (CL  mode). If IFONSCRN is  running  in  the   command 
  204.                line (CL -non-resident) mode, and it finds one  of  the trigger 
  205.                strings, it sets the DOS ERRORLEVEL to 0 (zero) , else if it is 
  206.                not found,  it will  be  set  to  1 (one). 
  207.  
  208.                In either TSR or CL mode, after finding the trigger string,  an 
  209.                optional  window may pop up with the user's message.  Different 
  210.                types  of beeps may be associated with  the  window,  including 
  211.                the  ability  to control an external   parallel   port  device. 
  212.                After pressing any key to clear the window, optional keystrokes 
  213.                may  be automatically sent to the foreground program (TSR  mode 
  214.                only). 
  215.  
  216. PARKHEAD.EXE   This  program  runs  on IBM  PC/286/386s  and  most  compatible  
  217.                machines. It parks up to  2 hard (fixed) disk's heads over  the  
  218.                shipping area where user data doesn't reside.
  219.  
  220. PDEL.EXE       PERMANENTLY deletes with verification, your specified filename.  
  221.                You  will be prompted to press 'Y'<cr> to delete  the  specific  
  222.                file.
  223.  
  224. PLAYER.EXE     Plays  a WAVE or VOC formatted sound file on a Sound Blaster or 
  225.                Sound  Blaster Pro Audio card.
  226.  
  227. PRTSCRFF.EXE   Appends  a  form-feed  (paper eject) command  to  your  printer 
  228.                whenever    you   press the PrintScreen key.  Very  useful   to 
  229.                keep   your  printer always at its  top-of-form  position.  For 
  230.                laser  printers,  this  saves  you  from  taking  the   printer 
  231.                off-line, and pressing the PageEject button.
  232.  
  233. RLIST.EXE      Prints  a range of lines from a file (CR,LF delimited)  to  the  
  234.                CON:  or  PRN:  device. Useful to view a portion  of  a  file's  
  235.                contents.
  236.  
  237.  
  238.  
  239.  
  240.  
  241.  
  242. RWDIR.EXE      Generates  a list of non-read-only files. Useful to keep  track  
  243.                of  the few files on your system that are  read-writable  since  
  244.                the  cautious  user  will have the majority  of  his/her  files  
  245.                marked  as read-only. Certain applications require their  files  
  246.                to read-writable so not every file may be set to read-only.
  247.  
  248. SETBEEP.COM    Installs  itself  as a RAM-resident program that will  set  the  
  249.                beep  character's (ASCII decimal 7 or control-G) duration to  a 
  250.                user  specified  value.  The  default beep  tone duration is  1 
  251.                second which is  too  long  and annoying for many people.  This 
  252.                program intercepts BIOS interrupt 10h WRITE_TTY.
  253.  
  254. TUNE4DAY.EXE   Plays   a   voice  file(s)  upon  invocation.   TUNE4DAY   uses 
  255.                TUNE4DAY.INI to  control its  operation. It maintains a pointer 
  256.                in  this  file to control which  file(s) it   will   act   upon 
  257.                during  its  next  invocation. It runs  a   command   on   this 
  258.                file(s).  Even  though  TUNE4DAY is meant to  traverse  down  a 
  259.                directory  of   sound  files  and   play  the  next  sequential 
  260.                file(s), it can be used to  perform  any command on a directory 
  261.                of any type of files.
  262.  
  263. VDEL.EXE       Will  delete with verification, files that match your  filename  
  264.                specification. You will be prompted to press 'Y' to delete  the  
  265.                specific  file.  'Read-only'  files  will  prompt  you  for  an  
  266.                additional 'Y' to be deleted.
  267.  
  268. VERS.COM       Installs itself as a RAM-resident program that will set the DOS  
  269.                version to a user specified value. This is useful when  running  
  270.                programs   that  require  a specific DOS version for no  useful  
  271.                reason.   (Many   DOS  supplemental programs  require  specific  
  272.                versions for no reason. For example, if you are running DOS 3.1  
  273.                but like DOS 3.2's ATTRIB.EXE '/S' sub-directory search option,  
  274.                you  could set VERS to 3.2, then run ATTRIB and then  reset  it  
  275.                back to 3.1).
  276.  
  277. ZDIR.EXE       Reports  the  kilobytes  contained in the  files  matching  the  
  278.                filespec_to_scan.
  279.  
  280.  
  281.  
  282.  
  283.